home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Entertainment
/
MacMud
/
Sockets
/
herror.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-04-05
|
218 b
|
16 lines
|
[
TEXT/MPS
]
extern char *h_errlist[];
extern int h_nerr;
extern int h_errno;
herror(s)
char *s;
{
dprintf("%s: ",s);
if (h_errno < h_nerr)
dprintf(h_errlist[h_errno]);
else
dprintf("error %d",h_errno);
dprintf("\n");
}